From: Olaf Hering Date: Tue, 5 Jan 2021 15:05:36 +0000 (+0100) Subject: tools/libxenguest: remove FOLD_CR3 from xg_save_restore.h X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~1196 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=22deecf9fef271246327bfe8d62d0205a29db64d;p=xen.git tools/libxenguest: remove FOLD_CR3 from xg_save_restore.h The last user was removed with commit b15bc4345e772df92e5ffdbc4c1e9ae2a6206617 Signed-off-by: Olaf Hering Acked-by: Andrew Cooper --- diff --git a/tools/libs/guest/xg_save_restore.h b/tools/libs/guest/xg_save_restore.h index e4fe747c4e..a9c1a2dbe3 100644 --- a/tools/libs/guest/xg_save_restore.h +++ b/tools/libs/guest/xg_save_restore.h @@ -49,16 +49,6 @@ #define M2P_SIZE(_m) ROUNDUP(((_m) * sizeof(xen_pfn_t)), M2P_SHIFT) #define M2P_CHUNKS(_m) (M2P_SIZE((_m)) >> M2P_SHIFT) -#define UNFOLD_CR3(_c) \ - ((uint64_t)((dinfo->guest_width == 8) \ - ? ((_c) >> 12) \ - : (((uint32_t)(_c) >> 12) | ((uint32_t)(_c) << 20)))) - -#define FOLD_CR3(_c) \ - ((uint64_t)((dinfo->guest_width == 8) \ - ? ((uint64_t)(_c)) << 12 \ - : (((uint32_t)(_c) << 12) | ((uint32_t)(_c) >> 20)))) - #define MEMCPY_FIELD(_d, _s, _f, _w) do { \ if ((_w) == 8) \ memcpy(&(_d)->x64._f, &(_s)->x64._f,sizeof((_d)->x64._f)); \